home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / quickfix.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  833 b   |  21 lines

  1. /* quickfix.c */
  2. int qf_init __ARGS((char_u *efile, char_u *errorformat, int newlist));
  3. void qf_jump __ARGS((int dir, int errornr, int forceit));
  4. void qf_list __ARGS((exarg_T *eap));
  5. void qf_age __ARGS((exarg_T *eap));
  6. void qf_mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
  7. void ex_cwindow __ARGS((exarg_T *eap));
  8. void ex_cclose __ARGS((exarg_T *eap));
  9. void ex_copen __ARGS((exarg_T *eap));
  10. linenr_T qf_current_entry __ARGS((void));
  11. int bt_quickfix __ARGS((buf_T *buf));
  12. int bt_nofile __ARGS((buf_T *buf));
  13. int bt_dontwrite __ARGS((buf_T *buf));
  14. int bt_dontwrite_msg __ARGS((buf_T *buf));
  15. int buf_hide __ARGS((buf_T *buf));
  16. void ex_make __ARGS((exarg_T *eap));
  17. void ex_cc __ARGS((exarg_T *eap));
  18. void ex_cnext __ARGS((exarg_T *eap));
  19. void ex_cfile __ARGS((exarg_T *eap));
  20. /* vim: set ft=c : */
  21.